func net/http.http2setDefault
10 uses
net/http (current package)
h2_bundle.go#L1115: func http2setDefault[T ~int | ~int32 | ~uint32 | ~int64](v *T, minval, maxval, defval T) {
h2_bundle.go#L1122: http2setDefault(&conf.MaxConcurrentStreams, 1, math.MaxUint32, http2defaultMaxStreams)
h2_bundle.go#L1123: http2setDefault(&conf.MaxEncoderHeaderTableSize, 1, math.MaxUint32, http2initialHeaderTableSize)
h2_bundle.go#L1124: http2setDefault(&conf.MaxDecoderHeaderTableSize, 1, math.MaxUint32, http2initialHeaderTableSize)
h2_bundle.go#L1126: http2setDefault(&conf.MaxUploadBufferPerConnection, http2initialWindowSize, math.MaxInt32, 1<<20)
h2_bundle.go#L1128: http2setDefault(&conf.MaxUploadBufferPerConnection, http2initialWindowSize, math.MaxInt32, http2transportDefaultConnFlow)
h2_bundle.go#L1131: http2setDefault(&conf.MaxUploadBufferPerStream, 1, math.MaxInt32, 1<<20)
h2_bundle.go#L1133: http2setDefault(&conf.MaxUploadBufferPerStream, 1, math.MaxInt32, http2transportDefaultStreamFlow)
h2_bundle.go#L1135: http2setDefault(&conf.MaxReadFrameSize, http2minMaxFrameSize, http2maxFrameSize, http2defaultMaxReadFrameSize)
h2_bundle.go#L1136: http2setDefault(&conf.PingTimeout, 1, math.MaxInt64, 15*time.Second)